Fix declaration of GtkNotebook::create_window()
authorEmmanuele Bassi <ebassi@src.gnome.org>
Mon, 11 Jun 2007 20:59:19 +0000 (20:59 +0000)
committerEmmanuele Bassi <ebassi@src.gnome.org>
Mon, 11 Jun 2007 20:59:19 +0000 (20:59 +0000)
GtkNotebook::create_window() was declared as returning a GtkNotebook
instead of a pointer to a GtkNotebook. (#446513, Kazuki Iwamoto)

svn path=/trunk/; revision=18103

ChangeLog
gtk/gtknotebook.h

index a5fa82e9e1664dd8e6a4df0b1c7a12bad293f7a9..0c341bbbac8c944594257f3acc2ac3bf67c9ec98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-11  Emmanuele Bassi  <ebassi@gnome.org>
+
+       * gtk/gtknotebook.h: Fix declaration of the create_window()
+       vfunc inside GtkNotebookClass. (#446513, Kazuki Iwamoto)
+
 2007-06-11  Matthias Clasen  <mclasen@redhat.com>
        
        * tests/testiconview.c: Use icons of varying size.
index 24109688e79b1a219a81820470a2afe8b84855ed..887704a22156a91f3fb40f59760a5bad0e619e4d 100644 (file)
@@ -116,10 +116,10 @@ struct _GtkNotebookClass
                                GtkWidget         *menu_label,
                                gint               position);
 
-  GtkNotebook (* create_window) (GtkNotebook       *notebook,
-                                 GtkWidget         *page,
-                                 gint               x,
-                                 gint               y);
+  GtkNotebook (* create_window) (GtkNotebook       *notebook,
+                                   GtkWidget         *page,
+                                   gint               x,
+                                   gint               y);
 
   void (*_gtk_reserved1) (void);
 };